-
-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#2478 - Add a prompt pop-up for 'delete-account' button #2481
Conversation
group-income Run #3612
Run Properties:
|
Project |
group-income
|
Branch Review |
sebin/task/#2478-disable-delete-account
|
Run status |
Passed #3612
|
Run duration | 10m 31s |
Commit |
dca6308708 ℹ️: Merge b39ff3123da00a74cdcf88b1fc02d7296816228a into aaaae1f4a2e3f4bc42871d94ce08...
|
Committer | Sebin Song |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
10
|
Skipped |
0
|
Passing |
112
|
View all changes introduced in this branch ↗︎ |
@@ -371,7 +371,8 @@ describe('Contributions', () => { | |||
|
|||
it('user1 edits the non monetary contribution', () => { | |||
cy.getByDT('buttonEditNonMonetaryContribution').click() | |||
cy.getByDT('inputNonMonetaryContribution').type('{selectall}{del}French classes{enter}') | |||
cy.getByDT('inputNonMonetaryContribution').clear() | |||
cy.getByDT('inputNonMonetaryContribution').type('French classes{enter}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a fix for a heisen-bug I've seen a few times before (e.g. here). type({selectall}{del})
is converted back to clear()
here. Also, Cypress doc warns that it's unsafe to chain something onto clear()
. So breaking it into two lines here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
closes #2478